home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue54 / System / FileSysDemo / UFileSys.dfm / UFileSys.txt
Encoding:
Text File  |  2000-01-07  |  5.6 KB  |  304 lines

  1. object Form1: TForm1
  2.   Left = 312
  3.   Top = 141
  4.   BorderStyle = bsDialog
  5.   Caption = 'FileSystem Testbed'
  6.   ClientHeight = 305
  7.   ClientWidth = 739
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = True
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 8
  21.     Top = 12
  22.     Width = 65
  23.     Height = 13
  24.     Caption = 'Current Drive:'
  25.     FocusControl = DriveList
  26.   end
  27.   object VolSize: TLabel
  28.     Left = 8
  29.     Top = 40
  30.     Width = 225
  31.     Height = 13
  32.     AutoSize = False
  33.     Caption = 'VolSize'
  34.   end
  35.   object VolName: TLabel
  36.     Left = 8
  37.     Top = 60
  38.     Width = 225
  39.     Height = 13
  40.     AutoSize = False
  41.     Caption = 'VolName'
  42.   end
  43.   object FSystem: TLabel
  44.     Left = 8
  45.     Top = 80
  46.     Width = 225
  47.     Height = 13
  48.     AutoSize = False
  49.     Caption = 'FSystem'
  50.   end
  51.   object SerNum: TLabel
  52.     Left = 8
  53.     Top = 100
  54.     Width = 225
  55.     Height = 13
  56.     AutoSize = False
  57.     Caption = 'SerNum'
  58.   end
  59.   object DrvType: TLabel
  60.     Left = 8
  61.     Top = 120
  62.     Width = 225
  63.     Height = 13
  64.     AutoSize = False
  65.     Caption = 'DrvType'
  66.   end
  67.   object FreeSp: TLabel
  68.     Left = 8
  69.     Top = 140
  70.     Width = 225
  71.     Height = 13
  72.     AutoSize = False
  73.     Caption = 'FreeSp'
  74.   end
  75.   object Bevel1: TBevel
  76.     Left = 248
  77.     Top = 10
  78.     Width = 2
  79.     Height = 165
  80.     Shape = bsLeftLine
  81.   end
  82.   object Label2: TLabel
  83.     Left = 260
  84.     Top = 36
  85.     Width = 59
  86.     Height = 13
  87.     Caption = 'Sub-Folders:'
  88.     FocusControl = FolderList
  89.   end
  90.   object Label16: TLabel
  91.     Left = 260
  92.     Top = 12
  93.     Width = 69
  94.     Height = 13
  95.     Caption = 'Current Folder:'
  96.   end
  97.   object FileCount: TLabel
  98.     Left = 256
  99.     Top = 133
  100.     Width = 44
  101.     Height = 13
  102.     Caption = 'FileCount'
  103.   end
  104.   object TotFileSize: TLabel
  105.     Left = 256
  106.     Top = 152
  107.     Width = 52
  108.     Height = 13
  109.     Caption = 'TotFileSize'
  110.   end
  111.   object Bevel2: TBevel
  112.     Left = 8
  113.     Top = 185
  114.     Width = 505
  115.     Height = 2
  116.     Shape = bsBottomLine
  117.   end
  118.   object Label3: TLabel
  119.     Left = 8
  120.     Top = 200
  121.     Width = 89
  122.     Height = 13
  123.     Caption = 'Watch Directory:'
  124.   end
  125.   object Bevel3: TBevel
  126.     Left = 344
  127.     Top = 200
  128.     Width = 0
  129.     Height = 97
  130.     Shape = bsLeftLine
  131.   end
  132.   object Bevel4: TBevel
  133.     Left = 336
  134.     Top = 199
  135.     Width = 9
  136.     Height = 97
  137.     Shape = bsLeftLine
  138.   end
  139.   object DriveList: TComboBox
  140.     Left = 80
  141.     Top = 8
  142.     Width = 153
  143.     Height = 21
  144.     Style = csDropDownList
  145.     Color = 11031552
  146.     Font.Charset = DEFAULT_CHARSET
  147.     Font.Color = clYellow
  148.     Font.Height = -11
  149.     Font.Name = 'MS Sans Serif'
  150.     Font.Style = []
  151.     ItemHeight = 13
  152.     ParentFont = False
  153.     TabOrder = 0
  154.     OnChange = DriveListChange
  155.   end
  156.   object FolderList: TComboBox
  157.     Left = 337
  158.     Top = 32
  159.     Width = 176
  160.     Height = 21
  161.     Style = csDropDownList
  162.     Color = 11031552
  163.     Font.Charset = DEFAULT_CHARSET
  164.     Font.Color = clYellow
  165.     Font.Height = -11
  166.     Font.Name = 'MS Sans Serif'
  167.     Font.Style = []
  168.     ItemHeight = 13
  169.     ParentFont = False
  170.     TabOrder = 1
  171.     OnChange = FolderListChange
  172.   end
  173.   object CurFolder: TEdit
  174.     Left = 336
  175.     Top = 8
  176.     Width = 393
  177.     Height = 21
  178.     Color = 11031552
  179.     Font.Charset = DEFAULT_CHARSET
  180.     Font.Color = clYellow
  181.     Font.Height = -11
  182.     Font.Name = 'MS Sans Serif'
  183.     Font.Style = []
  184.     ParentFont = False
  185.     TabOrder = 2
  186.     OnKeyPress = CurFolderKeyPress
  187.   end
  188.   object GroupBox1: TGroupBox
  189.     Left = 256
  190.     Top = 61
  191.     Width = 153
  192.     Height = 60
  193.     Caption = 'File Attributes '
  194.     TabOrder = 3
  195.     object cbHidden: TCheckBox
  196.       Tag = 1
  197.       Left = 8
  198.       Top = 32
  199.       Width = 57
  200.       Height = 17
  201.       Caption = 'Hidden'
  202.       TabOrder = 0
  203.       OnClick = cbReadOnlyClick
  204.     end
  205.     object cbSystem: TCheckBox
  206.       Tag = 2
  207.       Left = 88
  208.       Top = 16
  209.       Width = 57
  210.       Height = 17
  211.       Caption = 'System'
  212.       TabOrder = 1
  213.       OnClick = cbReadOnlyClick
  214.     end
  215.     object cbReadOnly: TCheckBox
  216.       Left = 8
  217.       Top = 16
  218.       Width = 73
  219.       Height = 17
  220.       Caption = 'Read-Only'
  221.       TabOrder = 2
  222.       OnClick = cbReadOnlyClick
  223.     end
  224.     object cbArchive: TCheckBox
  225.       Tag = 3
  226.       Left = 88
  227.       Top = 32
  228.       Width = 57
  229.       Height = 17
  230.       Caption = 'Archive'
  231.       TabOrder = 3
  232.       OnClick = cbReadOnlyClick
  233.     end
  234.   end
  235.   object FileList: TListBox
  236.     Left = 520
  237.     Top = 32
  238.     Width = 209
  239.     Height = 265
  240.     Color = 11031552
  241.     Font.Charset = DEFAULT_CHARSET
  242.     Font.Color = clYellow
  243.     Font.Height = -11
  244.     Font.Name = 'MS Sans Serif'
  245.     Font.Style = []
  246.     ItemHeight = 13
  247.     ParentFont = False
  248.     TabOrder = 4
  249.   end
  250.   object Button1: TButton
  251.     Left = 420
  252.     Top = 80
  253.     Width = 89
  254.     Height = 25
  255.     Caption = 'Folder Size...'
  256.     TabOrder = 5
  257.     OnClick = Button1Click
  258.   end
  259.   object WatchDirName: TEdit
  260.     Left = 96
  261.     Top = 198
  262.     Width = 225
  263.     Height = 21
  264.     Color = 11031552
  265.     Font.Charset = DEFAULT_CHARSET
  266.     Font.Color = clYellow
  267.     Font.Height = -11
  268.     Font.Name = 'MS Sans Serif'
  269.     Font.Style = []
  270.     ParentFont = False
  271.     TabOrder = 6
  272.     OnChange = WatchDirNameChange
  273.     OnKeyPress = WatchDirNameKeyPress
  274.   end
  275.   object WatchSubs: TCheckBox
  276.     Left = 8
  277.     Top = 232
  278.     Width = 137
  279.     Height = 17
  280.     Caption = 'Watch subdirectories'
  281.     TabOrder = 7
  282.   end
  283.   object StartButton: TButton
  284.     Left = 176
  285.     Top = 246
  286.     Width = 65
  287.     Height = 25
  288.     Caption = 'Start'
  289.     Enabled = False
  290.     TabOrder = 8
  291.     OnClick = StartButtonClick
  292.   end
  293.   object StopButton: TButton
  294.     Left = 248
  295.     Top = 246
  296.     Width = 65
  297.     Height = 25
  298.     Caption = 'Stop'
  299.     Enabled = False
  300.     TabOrder = 9
  301.     OnClick = StopButtonClick
  302.   end
  303. end
  304.